Java Script It!
See Also...
Info
Open Window
 
Description
A java script application that allows you to open a new browser window with custom configurations.

Properties
Property Description
Document URL The URL of the HTML document that will be loaded into the browser window you are launching. You may use a relative or absolute path for the URL.
Width The width in pixels of the browser window you are opening.
Height The height in pixels of the browser window you are opening.
Left The left position in pixels that the new browser window will be located when opened. Works in version 4 and above browsers only.
Top The top position in pixels that the new browser window will be located when opened. Works in version 4 and above browsers only.
Buttons Whether or not the browser window you are opening will display buttons.
Location Whether or not the browser window you are opening will display the location (address) bar.
Resizable Whether or not the browser window you are opening will allow the user to resize it.
Directories Whether or not the browser window you are opening will display directories.
Scrollbars Whether or not the browser window you are opening will display scrollbars (if neccesary).
Menu Whether or not the browser window you are opening will display the menu bar.
Status Whether or not the browser window you are opening will display the status bar.
Toolbar Whether or not the browser window you are opening will display the tool bar.
Copy History Whether or not the browser window you are opening will copy the history of the browser which opened it.
Fullscreen Whether or not the browser window you are opening will display in full screen mode. This will only work in Microsoft Internet Explorer 4 and above.
Open Window Style Stores how the new browser window will be opened. A setting of Text will cause the new window to be opened by the user clicking on a hyperlink. A setting of Form Button will cause the new window to be opened by the user's click on a form button. Java Script It! will create both the hyperlink or form button.
Button Caption Stores the text that will appear on the form button. This property will only be applied if the Open Window Style property is set to Form Button.
Button Insertion Point Stores the character position of where the form button will be displayed within the current document. This property will only be applied if the Open Window Style property is set to Form Button.
Text Selection Stores the text within the current document that will become the hyperlink. This property will only be applied if the Open Window Style property is set to Text.

Browser Compatibility
Navigator 3 IE 3 Navigator 4++ IE 4++
compatible compatible compatible compatible

Aditional Information

  • You can add Open Window to a document as many times as your wish

Info
Support